projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
659770f
)
Use -Wanalyzer-deref-before-check in GCC 14
author
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 18 Feb 2024 08:12:28 +0000
(
00:12
-0800)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 18 Feb 2024 08:38:16 +0000
(
00:38
-0800)
* src/marker.c: Work around GCC bug 113253 only if GCC 13.
The GCC bug reportedly will be fixed in GCC 14.
src/marker.c
patch
|
blob
|
history
diff --git
a/src/marker.c
b/src/marker.c
index 0101e144b4d69a70fa58668f7375328c4fca1075..1559dd52719eea71a305eebe17e4709578bbed43 100644
(file)
--- a/
src/marker.c
+++ b/
src/marker.c
@@
-21,7
+21,7
@@
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
/* Work around GCC bug 113253. */
-#if
13 <= __GNUC__
+#if
__GNUC__ == 13
# pragma GCC diagnostic ignored "-Wanalyzer-deref-before-check"
#endif